home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 September
/
Macworld (1998-09).dmg
/
Shareware World
/
Info
/
For Developers
/
MacZoop 1.8.3
/
Required Classes
/
Z Sources
/
ZStartUp.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-28
|
623b
|
41 lines
/*************************************************************************************************
*
*
* ObjectMacZapp -- a standard Mac OOP application template
*
*
*
* ZStartUp.cpp -- start-up code (main)
*
*
*
*
*
* © 1996, Graham Cox
*
*
*
*
*************************************************************************************************/
#include "MacZoop.h"
void main();
/*
The main routine for MacZoop simply creates the application object and tells it to run.
*/
void main()
{
gApplication = new ZApplication(); // make the application object
RunApplication(); // run it
}